AuditDao_Impl

@Generated(value = "androidx.room.RoomProcessor")
class AuditDao_Impl : AuditDao

Constructors

Link copied to clipboard
constructor(@NonNull __db: RoomDatabase)

Functions

Link copied to clipboard
open fun all($completion: Continuation<in List<ToolCallAuditEntity>>): Any
All rows oldest-first — used by JSON export.
Link copied to clipboard
open fun clear($completion: Continuation<in Unit>): Any
Link copied to clipboard
open fun count($completion: Continuation<in Integer>): Any
Link copied to clipboard
open fun deleteOlderThan(cutoff: Long, $completion: Continuation<in Integer>): Any
Drop rows recorded before cutoff (epoch millis).
Link copied to clipboard
Link copied to clipboard
open fun insert(entry: ToolCallAuditEntity, $completion: Continuation<in Unit>): Any
Link copied to clipboard
open fun observe(limit: Int): Flow<List<ToolCallAuditEntity>>
Reactive most-recent-first stream for a browse UI.
Link copied to clipboard
open fun recent(limit: Int, $completion: Continuation<in List<ToolCallAuditEntity>>): Any
Most recent calls first.